home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Online / anubis-3.6.0 / scripts / debian.init next >
Text File  |  2002-11-17  |  860b  |  44 lines

  1. #!/bin/sh
  2. #
  3. # DEBIAN:
  4. # To start GNU Anubis as a system service, copy this file to
  5. # /etc/init.d/anubis and run the "update-rc.d anubis defaults".
  6. # To remove the service, delete the /etc/init.d/anubis
  7. # and run the "update-rc.d anubis remove".
  8. #
  9.  
  10. DAEMON="anubis"
  11.  
  12. set -e
  13. test -f $DAEMON || exit 0
  14.  
  15. case "$1" in
  16.   start)
  17.     echo -n "Starting the Anubis: "
  18.     if start-stop-daemon --start --quiet --exec $DAEMON
  19.     then
  20.      echo "succeeded."
  21.     else
  22.      echo "anubis already running."
  23.     fi
  24.     ;;
  25.   stop)
  26.     echo -n "Stopping the Anubis: "
  27.     start-stop-daemon --stop --quiet --exec $DAEMON
  28.     echo "succeeded."
  29.     ;;
  30.   force-reload|restart)
  31.     echo -n "Restarting the Anubis: "
  32.     start-stop-daemon --stop --quiet --exec $DAEMON
  33.     start-stop-daemon --start --quiet --exec $DAEMON
  34.     echo "succeeded."
  35.     ;;
  36.   *)
  37.     echo "Usage: /etc/init.d/anubis {start|stop|restart}"
  38.     exit 1
  39.     ;;
  40. esac
  41.  
  42. exit 0
  43.  
  44.